home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / tsqed16.zip / QMACS.BAT < prev    next >
DOS Batch File  |  1992-04-18  |  1KB  |  41 lines

  1. echo off
  2. echo.
  3. echo ┌───────────────────────────────────────────────────────┐
  4. echo │ Compile all the TSQED .QMA macros                     │
  5. echo │ By Prof. Timo Salmi, ts@chyde.uwasa.fi, Sat 18-Apr-92 │
  6. echo └───────────────────────────────────────────────────────┘
  7. echo.
  8.  
  9. rem Check that the qmac.exe macro compiler is available
  10. set _found=
  11. if exist qmac.exe set _found=yes
  12. for %%d in (%path%) do if exist %%d\qmac.exe set _found=yes
  13. if not "%_found%"=="yes" goto _error
  14.  
  15. pause
  16. qmac ascii.mac ascii.qma /a- /b
  17. qmac boxtoasc.mac boxtoasc.qma /a- /b
  18. qmac crypt.mac crypt.qma /a- /b
  19. qmac date.mac date.qma /a- /b
  20. qmac linsolve.mac linsolve.qma /a- /b
  21. qmac nosave.mac nosave.qma /a- /b
  22. qmac pascal.mac pascal.qma /a- /b
  23. qmac quote.mac quote.qma /a- /b
  24. qmac rot13.mac rot13.qma /a- /b
  25. qmac save.mac save.qma /a- /b
  26. qmac session.mac session.qma /a- /b
  27. qmac spell.mac spell.qma /a- /b
  28. qmac synch.mac synch.qma /a- /b
  29. qmac toasc.mac toasc.qma /a- /b
  30. qmac toibm.mac toibm.qma /a- /b
  31. goto _out
  32.  
  33. :_error
  34. echo QMAC.EXE must be at path or current directory to run this batch
  35. echo You can download it as garbo.uwasa.fi:/pc/editor/qmac215.zip
  36. goto _out
  37.  
  38. :_out
  39. set _found=
  40. echo on
  41.